home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_11_03 / 1103018b < prev    next >
Text File  |  1993-01-04  |  207b  |  10 lines

  1. /* strftime function */
  2. #include "xtime.h"
  3.  
  4. size_t (strftime)(char *s, size_t n,
  5.     const char *fmt, const struct tm *t)
  6.     {    /* format time to string */
  7.     return (_Strftime(s, n, fmt, t, &_Times));
  8.     }
  9.  
  10.